home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
lisp
/
stk-3.002
/
stk-3
/
STk-3.1
/
Contrib
/
STk-wtour
/
lessons
/
radiobutton.stk
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-12-12
|
377 b
|
9 lines
;; A set of radio button widgets
(define color-var1 #f) ;; The variable to which radiobuttons are "connected"
(radiobutton '.b1 :text "Red" :variable 'color-var1 :value "R" :anchor "w")
(radiobutton '.b2 :text "Green" :variable 'color-var1 :value "G" :anchor "w")
(radiobutton '.b3 :text "Blue" :variable 'color-var1 :value "B" :anchor "w")
(pack .b1 .b2 .b3 :fill "x")